home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / obskit.zip / ALIASES.DOS < prev    next >
Text File  |  1992-01-11  |  5KB  |  110 lines

  1.       REM ************************************************************
  2.       REM This line sets up the configuration for ObsRes
  3.       REM The translator is to be ON
  4.       REM The translation echo is disabled
  5.       REM Aliases are not case sensitive
  6.       REM Translations are to be applied recursively
  7.       REM ************************************************************
  8. alias /on /noecho /nocase /recurse
  9.  
  10.       REM ------------------------------------------------------------
  11.       REM command:  CD Directory
  12.       REM command:  CHDIR Directory
  13.       REM purpose:  To change directories
  14.       REM ------------------------------------------------------------
  15. alias          cd         ocd /push /update
  16. alias          chdir      ocd /push /update
  17.  
  18.       REM ------------------------------------------------------------
  19.       REM command:  COPY Source(WildSpec or Directory) [Target]
  20.       REM purpose:  Copies files from source to target
  21.       REM ------------------------------------------------------------
  22. alias          copy       mf /c
  23.  
  24.       REM ------------------------------------------------------------
  25.       REM command:  DEL WildSpec or Directory
  26.       REM command:  ERASE WildSpec or Directory
  27.       REM purpose:  To delete the specified files, or dir contents
  28.       REM ------------------------------------------------------------
  29. alias          del        mf /d
  30. alias          erase      mf /d
  31.  
  32.       REM ------------------------------------------------------------
  33.       REM command:  DIR {WildSpec} [Directory]
  34.       REM purpose:  To list files
  35.       REM ------------------------------------------------------------
  36. alias          dir        lf
  37.  
  38.       REM ------------------------------------------------------------
  39.       REM command:  MD Directory
  40.       REM command:  MKDIR Directory
  41.       REM purpose:  Creates a new directory and updates HotDir file
  42.       REM ------------------------------------------------------------
  43. alias          md         ocd /mkdir
  44. alias          mkdir      ocd /mkdir
  45.  
  46.       REM ------------------------------------------------------------
  47.       REM command:  PATH [string]
  48.       REM purpose:  Sets the path = string / enables path editor
  49.       REM ------------------------------------------------------------
  50. alias /nospace path       ee /edit /noremove path=
  51.  
  52.       REM ------------------------------------------------------------
  53.       REM command:  PROMPT [string]
  54.       REM purpose:  Sets the prompt = string / enables prompt editor
  55.       REM ------------------------------------------------------------
  56. alias /nospace prompt     ee /edit /noremove prompt=
  57.  
  58.       REM ------------------------------------------------------------
  59.       REM command:  RD Directory
  60.       REM command:  RMDIR Directory
  61.       REM purpose:  Removes the directory, and updates HotDir file
  62.       REM comment:  Directory must be empty
  63.       REM ------------------------------------------------------------
  64. alias          rd         ocd /rmdir
  65. alias          rmdir      ocd /rmdir
  66.  
  67.       REM ------------------------------------------------------------
  68.       REM command:  REN    Source(WildSpec or Directory) [Target]
  69.       REM command:  RENAME Source(WildSpec or Directory) [Target]
  70.       REM purpose:  Change file or directory names
  71.       REM           Move files between directories
  72.       REM
  73.       REM           If Target is absent, files will be moved to the
  74.       REM           current directory
  75.       REM ------------------------------------------------------------
  76. alias          ren        mf /m
  77. alias          rename     mf /m
  78.  
  79.       REM ------------------------------------------------------------
  80.       REM command:  SET [variable[=definition]]
  81.       REM purpose:  Establish or change an environment variable
  82.       REM ------------------------------------------------------------
  83. alias          set        ee /edit
  84.  
  85.       REM ------------------------------------------------------------
  86.       REM command:  TYPE {WildSpec}
  87.       REM purpose:  Display the files on the screen
  88.       REM ------------------------------------------------------------
  89. alias          type       fd
  90.  
  91.       REM ------------------------------------------------------------
  92.       REM clear the OB definition
  93.       REM Tools must be visible via path
  94.       REM ------------------------------------------------------------
  95. alias /null    ob
  96.  
  97.       REM ------------------------------------------------------------
  98.       REM map all the tools to the Toolkit directory
  99.       REM ------------------------------------------------------------
  100. alias          alias      ob alias.exe
  101. alias          ds         ob ds.exe
  102. alias          ee         ob ee.exe
  103. alias          fd         ob fd.exe
  104. alias          lf         ob lf.exe
  105. alias          locate     ob locate.exe
  106. alias          mf         ob mf.exe
  107. alias          ocd        ob ocd.exe
  108. alias          reres      ob reres.com
  109.  
  110.